home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_4 / mm_1_0.lha / MM / Rexx / MM_Requester.rexx < prev    next >
OS/2 REXX Batch file  |  1995-01-05  |  248b  |  14 lines

  1. /*
  2. ** This script shows how to use the MM Requester
  3. */
  4.  
  5. address 'MAILMANAGER'
  6.  
  7. titolo = '"MM Requester"'
  8. text = 'This is an example for the usage of'x2c(0A)'cbMM_Requestern'
  9. gadgets = '*_Ok|_Cancel'
  10.  
  11. MM_Requester titolo 'text' 'gadgets'
  12.  
  13. say rc
  14.